home *** CD-ROM | disk | FTP | other *** search
/ Java Programmer's Toolkit / Java Programmer's Toolkit.iso / applets / audioi~1 / audioi~1.jav < prev    next >
Text File  |  1995-10-31  |  3KB  |  134 lines

  1. /*
  2.  * @(#)AudioItem.java    1.26f 95/03/22 James Gosling
  3.  *
  4.  * Copyright (c) 1994 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software
  7.  * and its documentation for NON-COMMERCIAL purposes and without
  8.  * fee is hereby granted provided that this copyright notice
  9.  * appears in all copies. Please refer to the file "copyright.html"
  10.  * for further important copyright and licensing information.
  11.  *
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  13.  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  14.  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  15.  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  16.  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  17.  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  18.  */
  19.  
  20. import java.io.InputStream;
  21. import java.util.Hashtable;
  22. import java.util.Enumeration;
  23. import java.util.StringTokenizer;
  24.  
  25. import java.awt.*;
  26. import java.net.*;
  27. import java.applet.AudioClip;
  28.  
  29. /**
  30.  * A simple Item class to play an audio clip.
  31.  * @author James Gosling
  32.  */
  33.  
  34. public class AudioItem extends java.applet.Applet {
  35.     /**
  36.      * The sounds to be played.
  37.      */
  38.     private String sounds;
  39.  
  40.     /**
  41.      * The index of the next sound in the sounds strings.
  42.      */
  43.     private int index;
  44.  
  45.     /**
  46.      * The currently playing audio stream, or null
  47.      * when no audio is playing.
  48.      */
  49.     private AudioClip audio;
  50.  
  51.     /**
  52.      * Play the next sound. The sound URLS are obtained
  53.      * from the "snd" attribute. You can specify a list
  54.      * of them by seperating the sounds by '|'s.<p>
  55.      * Note that the URL is constructed relative to the
  56.      * getDocumentBase(), that is because the url is obtained
  57.      * from within the document
  58.      */
  59.     public void next() {
  60.     try {
  61.         if (audio != null) {
  62.         audio.stop();
  63.         audio = null;
  64.         }
  65.         
  66.         String url = sounds;
  67.         if (sounds.indexOf('|') >= 0) {
  68.         int start = index;
  69.         if ((index = sounds.indexOf('|', index)) < 0) {
  70.             url = sounds.substring(start);
  71.             index = start;
  72.         } else {
  73.             url = sounds.substring(start, index++);
  74.         }
  75.         }
  76.         if (url.length() > 0) {
  77.         audio = getAudioClip(new URL(getDocumentBase(), url));
  78.         audio.play();
  79.         }
  80.     } catch(Exception e) {
  81.     }
  82.     }
  83.  
  84.     /**
  85.      * Initialize the applet. First resize it, then get the
  86.      * "snd" attribute.
  87.      */
  88.     public void init() {
  89.     resize(10, 12);
  90.  
  91.     sounds = getParameter("snd");
  92.     if (sounds == null) {
  93.         sounds = "doc:/demo/audio/ding.au";
  94.     }
  95.     }
  96.  
  97.     /**
  98.      * When the applet is started play the next sound.
  99.      */
  100.     public void start() {
  101.     next();
  102.     }
  103.  
  104.     /**
  105.      * When the applet is stopped, stop playing the current sound.
  106.      */
  107.     public void stop() {
  108.     if (audio != null) {
  109.         audio.stop();
  110.         audio = null;
  111.     }
  112.     }
  113.  
  114.     /**
  115.      * When the user clicks in the applet, play the next sound.
  116.      */
  117.     public boolean mouseUp(java.awt.Event evt, int x, int y) {
  118.     next();
  119.     return true;
  120.     }
  121.  
  122.     /**
  123.      * Paint an audio icon.
  124.      */
  125.     public void paint(Graphics g) {
  126.     double f = ((double)(size().height - 1)) / ((size().width - 1) * 2);
  127.     int offset = size().height / 2;
  128.     for (int i = size().width - 1; i >= 0; i -= 3) {
  129.         int h = (int)(i * f);
  130.         g.drawLine(i, offset - h, i, offset + h);
  131.     }
  132.     }
  133. }
  134.